home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6984 / 6984.xpi / chrome / lazarus.jar / content / json.js < prev    next >
Text File  |  2009-11-24  |  18KB  |  492 lines

  1. /*
  2.     json2.js
  3.     2008-03-24
  4.  
  5.     Public Domain.
  6.  
  7.     NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
  8.  
  9.     See http://www.JSON.org/js.html
  10.  
  11.     This file creates a global JSON object containing three methods: stringify,
  12.     parse, and quote.
  13.  
  14.  
  15.         JSON.stringify(value, replacer, space)
  16.             value       any JavaScript value, usually an object or array.
  17.  
  18.             replacer    an optional parameter that determines how object
  19.                         values are stringified for objects without a toJSON
  20.                         method. It can be a function or an array.
  21.  
  22.             space       an optional parameter that specifies the indentation
  23.                         of nested structures. If it is omitted, the text will
  24.                         be packed without extra whitespace. If it is a number,
  25.                         it will specify the number of spaces to indent at each
  26.                         level. If it is a string (such as '\t'), it contains the
  27.                         characters used to indent at each level.
  28.  
  29.             This method produces a JSON text from a JavaScript value.
  30.  
  31.             When an object value is found, if the object contains a toJSON
  32.             method, its toJSON method with be called and the result will be
  33.             stringified. A toJSON method does not serialize: it returns the
  34.             value represented by the name/value pair that should be serialized,
  35.             or undefined if nothing should be serialized. The toJSON method will
  36.             be passed the key associated with the value, and this will be bound
  37.             to the object holding the key.
  38.  
  39.             This is the toJSON method added to Dates:
  40.  
  41.                 function toJSON(key) {
  42.                     return this.getUTCFullYear()   + '-' +
  43.                          f(this.getUTCMonth() + 1) + '-' +
  44.                          f(this.getUTCDate())      + 'T' +
  45.                          f(this.getUTCHours())     + ':' +
  46.                          f(this.getUTCMinutes())   + ':' +
  47.                          f(this.getUTCSeconds())   + 'Z';
  48.                 }
  49.  
  50.             You can provide an optional replacer method. It will be passed the
  51.             key and value of each member, with this bound to the containing
  52.             object. The value that is returned from your method will be
  53.             serialized. If your method returns undefined, then the member will
  54.             be excluded from the serialization.
  55.  
  56.             If no replacer parameter is provided, then a default replacer
  57.             will be used:
  58.  
  59.                 function replacer(key, value) {
  60.                     return Object.hasOwnProperty.call(this, key) ?
  61.                         value : undefined;
  62.                 }
  63.  
  64.             The default replacer is passed the key and value for each item in
  65.             the structure. It excludes inherited members.
  66.  
  67.             If the replacer parameter is an array, then it will be used to
  68.             select the members to be serialized. It filters the results such
  69.             that only members with keys listed in the replacer array are
  70.             stringified.
  71.  
  72.             Values that do not have JSON representaions, such as undefined or
  73.             functions, will not be serialized. Such values in objects will be
  74.             dropped; in arrays they will be replaced with null. You can use
  75.             a replacer function to replace those with JSON values.
  76.             JSON.stringify(undefined) returns undefined.
  77.  
  78.             The optional space parameter produces a stringification of the value
  79.             that is filled with line breaks and indentation to make it easier to
  80.             read.
  81.  
  82.             If the space parameter is a non-empty string, then that string will
  83.             be used for indentation. If the space parameter is a number, then
  84.             then indentation will be that many spaces.
  85.  
  86.             Example:
  87.  
  88.             text = JSON.stringify(['e', {pluribus: 'unum'}]);
  89.             // text is '["e",{"pluribus":"unum"}]'
  90.  
  91.  
  92.             text = JSON.stringify(['e', {pluribus: 'unum'}], null, '\t');
  93.             // text is '[\n\t"e",\n\t{\n\t\t"pluribus": "unum"\n\t}\n]'
  94.  
  95.  
  96.         JSON.parse(text, reviver)
  97.             This method parses a JSON text to produce an object or array.
  98.             It can throw a SyntaxError exception.
  99.  
  100.             The optional reviver parameter is a function that can filter and
  101.             transform the results. It receives each of the keys and values, and
  102.             its return value is used instead of the original value. If it
  103.             returns what it received, then structure is not modified. If it
  104.             returns undefined then the member is deleted.
  105.  
  106.             Example:
  107.  
  108.             // Parse the text. Values that look like ISO date strings will
  109.             // be converted to Date objects.
  110.  
  111.             myData = JSON.parse(text, function (key, value) {
  112.                 var a;
  113.                 if (typeof value === 'string') {
  114.                     a =
  115. /^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}(?:\.\d*)?)Z$/.exec(value);
  116.                     if (a) {
  117.                         return new Date(Date.UTC(+a[1], +a[2] - 1, +a[3], +a[4],
  118.                             +a[5], +a[6]));
  119.                     }
  120.                 }
  121.                 return value;
  122.             });
  123.  
  124.  
  125.         JSON.quote(text)
  126.             This method wraps a string in quotes, escaping some characters
  127.             as needed.
  128.  
  129.  
  130.     This is a reference implementation. You are free to copy, modify, or
  131.     redistribute.
  132.  
  133.     USE YOUR OWN COPY. IT IS EXTREMELY UNWISE TO LOAD THIRD PARTY
  134.     CODE INTO YOUR PAGES.
  135. */
  136.  
  137. /*jslint regexp: true, forin: true, evil: true */
  138.  
  139. /*global JSON */
  140.  
  141. /*members "", "\b", "\t", "\n", "\f", "\r", "\"", JSON, "\\", apply,
  142.     call, charCodeAt, floor, getUTCDate, getUTCFullYear, getUTCHours,
  143.     getUTCMinutes, getUTCMonth, getUTCSeconds, hasOwnProperty, join, length,
  144.     parse, propertyIsEnumerable, prototype, push, quote, replace, stringify,
  145.     test, toJSON, toString
  146. */
  147.  
  148.  
  149. // Create a JSON object only if one does not already exist. We create the
  150. // object in a closure to avoid global variables.
  151.  
  152.  
  153.  
  154.  
  155. this.Lazarus = this.Lazarus || {};
  156.  
  157. /**
  158. * Firefox 3 introduces a native JSON object
  159. * we can use this to speed up our encoding and decoding
  160. */
  161. try {
  162.     if (Components.classes["@mozilla.org/dom/json;1"]){
  163.         Lazarus.JSON = Components.classes["@mozilla.org/dom/json;1"].createInstance(Components.interfaces.nsIJSON);
  164.         //Firefox 3.0beta builds have a broken version of the native json encoder
  165.         if (Lazarus.JSON.encode({"id":"foo"}) == null){
  166.             Lazarus.JSON = null;
  167.         }
  168.     }    
  169. }catch(e){}
  170.  
  171.  
  172. if (!Lazarus.JSON){
  173.     Lazarus.JSON = function(){
  174.  
  175.         function f(n) {    // Format integers to have at least two digits.
  176.             return n < 10 ? '0' + n : n;
  177.         }
  178.  
  179.         Date.prototype.toJSON = function () {
  180.  
  181.     // Eventually, this method will be based on the date.toISOString method.
  182.  
  183.             return this.getUTCFullYear()   + '-' +
  184.                  f(this.getUTCMonth() + 1) + '-' +
  185.                  f(this.getUTCDate())      + 'T' +
  186.                  f(this.getUTCHours())     + ':' +
  187.                  f(this.getUTCMinutes())   + ':' +
  188.                  f(this.getUTCSeconds())   + 'Z';
  189.         };
  190.  
  191.  
  192.         var escapeable = /["\\\x00-\x1f\x7f-\x9f]/g,
  193.             gap,
  194.             indent,
  195.             meta = {    // table of character substitutions
  196.                 '\b': '\\b',
  197.                 '\t': '\\t',
  198.                 '\n': '\\n',
  199.                 '\f': '\\f',
  200.                 '\r': '\\r',
  201.                 '"' : '\\"',
  202.                 '\\': '\\\\'
  203.             },
  204.             rep;
  205.  
  206.  
  207.         function quote(string) {
  208.  
  209.     // If the string contains no control characters, no quote characters, and no
  210.     // backslash characters, then we can safely slap some quotes around it.
  211.     // Otherwise we must also replace the offending characters with safe escape
  212.     // sequences.
  213.  
  214.             return escapeable.test(string) ?
  215.                 '"' + string.replace(escapeable, function (a) {
  216.                     var c = meta[a];
  217.                     if (typeof c === 'string') {
  218.                         return c;
  219.                     }
  220.                     c = a.charCodeAt();
  221.                     return '\\u00' + Math.floor(c / 16).toString(16) +
  222.                                                (c % 16).toString(16);
  223.                 }) + '"' :
  224.                 '"' + string + '"';
  225.         }
  226.  
  227.  
  228.         function str(key, holder) {
  229.  
  230.     // Produce a string from holder[key].
  231.  
  232.             var i,          // The loop counter.
  233.                 k,          // The member key.
  234.                 v,          // The member value.
  235.                 length,
  236.                 mind = gap,
  237.                 partial,
  238.                 value = holder[key];
  239.  
  240.     // If the value has a toJSON method, call it to obtain a replacement value.
  241.  
  242.             if (value && typeof value === 'object' &&
  243.                     typeof value.toJSON === 'function') {
  244.                 value = value.toJSON(key);
  245.             }
  246.  
  247.     // If we were called with a replacer function, then call the replacer to
  248.     // obtain a replacement value.
  249.  
  250.             if (typeof rep === 'function') {
  251.                 value = rep.call(holder, key, value);
  252.             }
  253.  
  254.     // What happens next depends on the value's type.
  255.  
  256.             switch (typeof value) {
  257.             case 'string':
  258.                 return quote(value);
  259.  
  260.             case 'number':
  261.  
  262.     // JSON numbers must be finite. Encode non-finite numbers as null.
  263.  
  264.                 return isFinite(value) ? String(value) : 'null';
  265.  
  266.             case 'boolean':
  267.             case 'null':
  268.  
  269.     // If the value is a boolean or null, convert it to a string. Note:
  270.     // typeof null does not produce 'null'. The case is included here in
  271.     // the remote chance that this gets fixed someday.
  272.  
  273.                 return String(value);
  274.  
  275.     // If the type is 'object', we might be dealing with an object or an array or
  276.     // null.
  277.  
  278.             case 'object':
  279.  
  280.     // Due to a specification blunder in ECMAScript, typeof null is 'object',
  281.     // so watch out for that case.
  282.  
  283.                 if (!value) {
  284.                     return 'null';
  285.                 }
  286.  
  287.     // Make an array to hold the partial results of stringifying this object value.
  288.  
  289.                 gap += indent;
  290.                 partial = [];
  291.  
  292.     // If the object has a dontEnum length property, we'll treat it as an array.
  293.  
  294.                 if (typeof value.length === 'number' &&
  295.                         !(value.propertyIsEnumerable('length'))) {
  296.  
  297.     // The object is an array. Stringify every element. Use null as a placeholder
  298.     // for non-JSON values.
  299.  
  300.                     length = value.length;
  301.                     for (i = 0; i < length; i += 1) {
  302.                         partial[i] = str(i, value) || 'null';
  303.                     }
  304.  
  305.     // Join all of the elements together, separated with commas, and wrap them in
  306.     // brackets.
  307.  
  308.                     v = partial.length === 0 ? '[]' :
  309.                         gap ? '[\n' + gap + partial.join(',\n' + gap) +
  310.                                   '\n' + mind + ']' :
  311.                               '[' + partial.join(',') + ']';
  312.                     gap = mind;
  313.                     return v;
  314.                 }
  315.  
  316.     // If the replacer is an array, use it to select the members to be stringified.
  317.  
  318.                 if (typeof rep === 'object') {
  319.                     length = rep.length;
  320.                     for (i = 0; i < length; i += 1) {
  321.                         k = rep[i];
  322.                         if (typeof k === 'string') {
  323.                             v = str(k, value, rep);
  324.                             if (v) {
  325.                                 partial.push(quote(k) + (gap ? ': ' : ':') + v);
  326.                             }
  327.                         }
  328.                     }
  329.                 } else {
  330.  
  331.     // Otherwise, iterate through all of the keys in the object.
  332.  
  333.                     for (k in value) {
  334.                         v = str(k, value, rep);
  335.                         if (v) {
  336.                             partial.push(quote(k) + (gap ? ': ' : ':') + v);
  337.                         }
  338.                     }
  339.                 }
  340.  
  341.     // Join all of the member texts together, separated with commas,
  342.     // and wrap them in braces.
  343.  
  344.                 v = partial.length === 0 ? '{}' :
  345.                     gap ? '{\n' + gap + partial.join(',\n' + gap) +
  346.                               '\n' + mind + '}' :
  347.                           '{' + partial.join(',') + '}';
  348.                 gap = mind;
  349.                 return v;
  350.                 
  351.             default:
  352.                 //undefined appears here.
  353.                 return null;
  354.             }
  355.         }
  356.  
  357.  
  358.     // Return the JSON object containing the stringify, parse, and quote methods.
  359.  
  360.         return {
  361.             stringify: function (value, replacer, space) {
  362.  
  363.     // The stringify method takes a value and an optional replacer, and an optional
  364.     // space parameter, and returns a JSON text. The replacer can be a function
  365.     // that can replace values, or an array of strings that will select the keys.
  366.     // A default replacer method can be provided. Use of the space parameter can
  367.     // produce text that is more easily readable.
  368.  
  369.                 var i;
  370.                 gap = '';
  371.                 indent = '';
  372.                 if (space) {
  373.  
  374.     // If the space parameter is a number, make an indent string containing that
  375.     // many spaces.
  376.  
  377.                     if (typeof space === 'number') {
  378.                         for (i = 0; i < space; i += 1) {
  379.                             indent += ' ';
  380.                         }
  381.  
  382.     // If the space parameter is a string, it will be used as the indent string.
  383.  
  384.                     } else if (typeof space === 'string') {
  385.                         indent = space;
  386.                     }
  387.                 }
  388.  
  389.     // If there is no replacer parameter, use the default replacer.
  390.  
  391.                 if (!replacer) {
  392.                     rep = function (key, value) {
  393.                         if (!Object.hasOwnProperty.call(this, key)) {
  394.                             return undefined;
  395.                         }
  396.                         return value;
  397.                     };
  398.  
  399.     // The replacer can be a function or an array. Otherwise, throw an error.
  400.  
  401.                 } else if (typeof replacer === 'function' ||
  402.                         (typeof replacer === 'object' &&
  403.                          typeof replacer.length === 'number')) {
  404.                     rep = replacer;
  405.                 } else {
  406.                     throw new Error('JSON.stringify');
  407.                 }
  408.  
  409.     // Make a fake root object containing our value under the key of ''.
  410.     // Return the result of stringifying the value.
  411.  
  412.                 return str('', {'': value});
  413.             },
  414.  
  415.  
  416.             parse: function (text, reviver) {
  417.  
  418.     // The parse method takes a text and an optional reviver function, and returns
  419.     // a JavaScript value if the text is a valid JSON text.
  420.  
  421.                 var j;
  422.  
  423.                 function walk(holder, key) {
  424.  
  425.     // The walk method is used to recursively walk the resulting structure so
  426.     // that modifications can be made.
  427.  
  428.                     var k, v, value = holder[key];
  429.                     if (value && typeof value === 'object') {
  430.                         for (k in value) {
  431.                             if (Object.hasOwnProperty.call(value, k)) {
  432.                                 v = walk(value, k);
  433.                                 if (v !== undefined) {
  434.                                     value[k] = v;
  435.                                 } else {
  436.                                     delete value[k];
  437.                                 }
  438.                             }
  439.                         }
  440.                     }
  441.                     return reviver.call(holder, key, value);
  442.                 }
  443.  
  444.  
  445.     // Parsing happens in three stages. In the first stage, we run the text against
  446.     // regular expressions that look for non-JSON patterns. We are especially
  447.     // concerned with '()' and 'new' because they can cause invocation, and '='
  448.     // because it can cause mutation. But just to be safe, we want to reject all
  449.     // unexpected forms.
  450.  
  451.     // We split the first stage into 4 regexp operations in order to work around
  452.     // crippling inefficiencies in IE's and Safari's regexp engines. First we
  453.     // replace all backslash pairs with '@' (a non-JSON character). Second, we
  454.     // replace all simple value tokens with ']' characters. Third, we delete all
  455.     // open brackets that follow a colon or comma or that begin the text. Finally,
  456.     // we look to see that the remaining characters are only whitespace or ']' or
  457.     // ',' or ':' or '{' or '}'. If that is so, then the text is safe for eval.
  458.  
  459.                 if (/^[\],:{}\s]*$/.test(text.replace(/\\["\\\/bfnrtu]/g, '@').
  460.     replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, ']').
  461.     replace(/(?:^|:|,)(?:\s*\[)+/g, ''))) {
  462.  
  463.     // In the second stage we use the eval function to compile the text into a
  464.     // JavaScript structure. The '{' operator is subject to a syntactic ambiguity
  465.     // in JavaScript: it can begin a block or an object literal. We wrap the text
  466.     // in parens to eliminate the ambiguity.
  467.  
  468.                     j = eval('(' + text + ')');
  469.  
  470.     // In the optional third stage, we recursively walk the new structure, passing
  471.     // each name/value pair to a reviver function for possible transformation.
  472.  
  473.                     return typeof reviver === 'function' ?
  474.                         walk({'': j}, '') : j;
  475.                 }
  476.  
  477.     // If the text is not JSON parseable, then a SyntaxError is thrown.
  478.  
  479.                 throw new SyntaxError('JSON.parse');
  480.             },
  481.  
  482.             quote: quote
  483.         };
  484.     }();
  485.     
  486.     //and convert the function names
  487.     Lazarus.JSON.encode = Lazarus.JSON.stringify;
  488.     Lazarus.JSON.decode = Lazarus.JSON.parse;
  489. }//catch
  490.  
  491.  
  492.